Conditions | 4 |
Paths | 8 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 16.0213 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | "use strict"; |
||
11 | 1 | const formatFile = (options) => { |
|
12 | return ' [' + options.level.toUpperCase() + ']' |
||
13 | + '[' + moment(new Date()).format('YYYY-MM-DD HH:mm:ss') + ']' |
||
14 | + (options.message ? ' ' + options.message : '') |
||
15 | + ( |
||
16 | options.meta && Object.keys(options.meta).length |
||
17 | ? ' ' + JSON.stringify(options.meta) |
||
18 | : '' |
||
19 | ) |
||
20 | ; |
||
21 | }; |
||
22 | |||
56 |